home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / NETPROG.ZIP;1 / NETPROG.TAR / lock / locknone.c < prev    next >
Encoding:
Text File  |  1989-12-17  |  114 b   |  16 lines

  1. /*
  2.  * Locking routines that do nothing.
  3.  */
  4.  
  5. my_lock(fd)
  6. int    fd;
  7. {
  8.     return;
  9. }
  10.  
  11. my_unlock(fd)
  12. int    fd;
  13. {
  14.     return;
  15. }
  16.